home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Headers / eoadaptors / Sybase / SybaseContext.h < prev    next >
Encoding:
Text File  |  1994-05-12  |  520 b   |  26 lines

  1. //  SybaseContext.h
  2. //  Copyright 1994, NeXT Computer, Inc.
  3.  
  4. #import    <eoaccess/eoaccess.h>
  5. #import <sybfront.h>
  6. #import <sybdb.h>
  7.  
  8. @class SybaseAdaptor;
  9. @class SybaseChannel;
  10.  
  11. @interface SybaseContext:EOAdaptorContext
  12. {
  13.     SybaseAdaptor *_adaptor;
  14.     SybaseChannel *_adaptorChannel; // not retained to avoid cycle
  15.     unsigned _transactionCount; // will be > 1 if transactions are nested
  16.     struct
  17.     {
  18.     unsigned debugEnabled:1;
  19.     unsigned _RESERVED:31;
  20.     } _flags;
  21. }
  22.  
  23. - initWithAdaptor:(EOAdaptor *)adaptor;
  24.  
  25. @end
  26.